home *** CD-ROM | disk | FTP | other *** search
/ EuroCD 3 / EuroCD 3.iso / Communication / STFax / Rexx / WW2STFax.rexx < prev   
OS/2 REXX Batch file  |  1998-06-24  |  398b  |  29 lines

  1. /*
  2.  *
  3.  *  $VER: WW2STFax.rexx 1.0 (21.4.97) by Simone Tellini
  4.  *
  5.  */
  6.  
  7. Options Results
  8.  
  9. IF ~SHOW(P,'STFAX.1') THEN DO
  10.  
  11.     'REQUESTRESPONSE PROMPT STFax is not active. Shall I load it?'
  12.  
  13.     IF RC > 0 THEN
  14.         Exit
  15.  
  16.     Address Command 'Run <>NIL: STFax:STFax'
  17.  
  18.     Address Command 'WaitForPort STFAX.1'
  19.  
  20. END
  21.  
  22. Address 'STFAX.1' 'PRTDRIVER ON'
  23.  
  24. 'PRINT'
  25.  
  26. Address 'STFAX.1' 'PRTDRIVER OFF'
  27.  
  28. Exit 0
  29.